From: kaf24@firebug.cl.cam.ac.uk Date: Fri, 5 May 2006 12:58:13 +0000 (+0100) Subject: Replace a bash-specific redirection in tools/ioemu/configure with a X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16108^2~10^2~5 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=1f516c94dc149b40fc11baebca2a6b6118b557e7;p=xen.git Replace a bash-specific redirection in tools/ioemu/configure with a standard POSIX one which allows the Xen tools to be built with a POSIX shell other than bash. Signed-off-by: Herbert Xu --- diff --git a/tools/ioemu/configure b/tools/ioemu/configure index b4bf85cf51..087fc5a9ce 100755 --- a/tools/ioemu/configure +++ b/tools/ioemu/configure @@ -230,7 +230,7 @@ fi if test -z "$vnc"; then -if libvncserver-config --version >& /dev/null; then +if libvncserver-config --version > /dev/null 2>&1; then vnc=yes else vnc=no